// Program ilustrujcy uycie wskanikw

#import <Foundation/Foundation.h>

int main (int argc, char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int  count = 10, x;
    int  *intPtr;

    intPtr = &count;
    x = *intPtr;

    NSLog (@"count = %i, x = %i", count, x);

    [pool drain];
    return 0;
}